home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / CSICNPane 1.0 / CSICNPane / CSICNPane.h < prev   
Encoding:
C/C++ Source or Header  |  1994-11-30  |  415 b   |  26 lines  |  [TEXT/KAHL]

  1. #pragma once
  2.  
  3. #include <Constants.h>
  4. #include <CPane.h>
  5.  
  6. #define kSICNWidth  SIZEBOX_LENGTH
  7. #define kSICNHeight SIZEBOX_LENGTH
  8.  
  9. struct CSICNPane : CPane
  10. {
  11.     short fId;
  12.     short fIndex;
  13.  
  14.     void ISICNPane
  15.         ( CView *anEnclosure
  16.         , CBureaucrat *aSupervisor
  17.         , short aHEncl
  18.         , short aVEncl
  19.         , SizingOption aHSizing
  20.         , SizingOption aVSizing
  21.         , short SICNid
  22.         , short SICNindex );
  23.  
  24.     virtual void Draw( Rect *area );
  25. };
  26.